home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sambar_cgi.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  79 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10246);
  10.  script_bugtraq_id(1002);
  11.  script_version ("$Revision: 1.17 $");
  12.  script_cve_id("CAN-2000-0213");
  13.  
  14.  name["english"] = "Sambar Web Server CGI scripts";
  15.  name["francais"] = "Scripts CGI du serveur web Sambar";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. At least one of these CGI scripts is installed :
  20.  
  21.     hello.bat
  22.     echo.bat
  23.     
  24. They allow any attacker to execute commands with the privileges of the web 
  25. server process.    
  26.  
  27. Solution : Delete all the *.bat files from your cgi-bin/ directory
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Au moins un de ces CGI est installΘ :
  33.  
  34.     hello.bat
  35.     echo.bat
  36.     
  37. Ils permettent α n'importe quel pirate d'executer
  38. des commandes arbitraires sur ce systΦme, avec
  39. les privilΦges du serveur web.
  40.  
  41. Solution : effacez tous les fichiers .bat du
  42.            rΘpΦrtoire cgi-bin/        
  43. Facteur de risque : ElevΘ";
  44.  
  45.  
  46.  script_description(english:desc["english"], francais:desc["francais"]);
  47.  
  48.  summary["english"] = "Checks for the presence of /cgi-bin/{hello,echo}.bat";
  49.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/{hello,echo}.bat";
  50.  
  51.  script_summary(english:summary["english"], francais:summary["francais"]);
  52.  
  53.  script_category(ACT_GATHER_INFO);
  54.  
  55.  
  56.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  57.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  58.  family["english"] = "CGI abuses";
  59.  family["francais"] = "Abus de CGI";
  60.  script_family(english:family["english"], francais:family["francais"]);
  61.  script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl");
  62.  script_require_ports("Services/www", 80);
  63.  script_require_keys("www/sambar");
  64.  exit(0);
  65. }
  66.  
  67. #
  68. # The script code starts here
  69. #
  70. include("http_func.inc");
  71. include("http_keepalive.inc");
  72. port = get_http_port ( default:port );
  73. if(!port) exit(0);
  74.  
  75. if (is_cgi_installed_ka(item:"hello.bat", port:port) ||
  76.     is_cgi_installed_ka(item:"echo.bat", port:port))
  77.   security_hole(port);
  78.  
  79.